home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1998 July / EnigmA AMIGA RUN 29 (1998)(G.R. Edizioni)(IT)[!][issue 1998-07 & 08].iso / earkit / news / thor / rexx / getnet.thor.doc < prev    next >
Text File  |  1998-05-24  |  4KB  |  105 lines

  1. GetNET.thor 1.4 (26.6.96) by Remco van Hooff (rvhooff@globalxs.nl)
  2.  
  3. GetNET can do 2 things:
  4.  
  5. 1: Grab http adresses (WWW addresses) from the current message, and save
  6.    them to the hotlist of your favourite WWW browser(s).
  7.    Browsers currently supported are:
  8.  
  9.    AMosaic
  10.    AWeb
  11.    IBrowse (0.81+)
  12.    Voyager
  13.    HTML is also supported which can be read by any browser.
  14.  
  15. 2: Grab email addresses from the current message, and save them to the
  16.    userlist of your Internet system.
  17.  
  18. REQUIREMENTS:
  19. - Thor 2.2+
  20. - COPY and DELETE somewhere in your path
  21. - A WWW browser (Amosaic, IBrowse, ALynx, AWeb, ...),
  22.   only for the www addresses.
  23.  
  24. USAGE:
  25. As usual you need to edit some variables:
  26.  
  27. - Edit the BBS variable to point to your Internet system.
  28.  
  29. - Edit the HOTLIST_* variables for the right path/file for the hotlists.
  30.  
  31. - Edit the AMOSAIC/IBROWSE/VOYAGER/AWEB/HTML variables:
  32.   1 = save to hitlist, 
  33.   0 = don't save to hotlist
  34.   You can have all set to 1 if you use all the browsers, or 0 if you don't
  35.   want to save anything :.) (you'll be notified if you have turned all off).
  36.  
  37. - Edit the LOOP variable: 
  38.   0 = loop
  39.   1 = no loop
  40.   This variable will enable you to return to the main requester (chose
  41.   between HTTP, Email or Quit) after you've saved email/http addresses.
  42.  
  43. - You can also edit the filter chars, I already included the most common
  44.   chars. The '.' is "hardcoded" and is therefore not included in the filter
  45.   list.
  46.   A filter character is a character that may be "connected" to an address,
  47.   e.g. <email@address.somewhere>
  48.   The '<' and '>' are not part of the actual address and thus should be
  49.   removed.
  50.   So filters for these characters are: filter.1.x = '>', filter.2.x = '<'
  51.   filter.1.x are used for chars that follow the address (http and email)
  52.   filter.2.x are used for chars that preceed the address (email only)
  53.  
  54. Note: 
  55. - You can leave the name of the address empty, they will automatically be
  56.   replaced by a default name.
  57.   If you selected HTTP the default name is 'subj (i)', subj is
  58.   the subject of the msg without 'Re:'. 
  59.   If you selected Email the default name is the userid (eg rvhooff in
  60.   rvhooff@globalxs.nl).
  61. - Duplicate addresses will not be shown.
  62. - The HTTP oprion will search the msg HEADER, the Email option will not.
  63.   
  64. AUTHOR:
  65. For bugs, comments, flames, typos, optimizing tips:
  66. Internet: rvhooff@globalxs.nl
  67. FIDO    : 2:286/407.39
  68. AMY     : 39:153/201.39
  69. Also have a look at my homepage for more Thor ARexx scripts.
  70. http://www.globalxs.nl/home/r/rvhooff
  71.  
  72. HISTORY:
  73.  1.0 - Joined 2 programs (GetHTTP and GetEmail) together into one program. 
  74.        The programs use a lot of similar code, so joining them together
  75.        will use less HD space :.)
  76.  
  77.  1.1 - Added AWeb hotlist support.
  78.      - Removed 'GetNet -' from default names when saving to the hotlists.
  79.      - Added loop option. You can now chose if you want to return to the start
  80.        requester or not.
  81.      - Changed the IBrowse hotlist format to that of verion 0.81.
  82.  
  83.  1.2 - Added Voyager hotlist support.
  84.  
  85.  1.3 - Fixed some trouble with arexx ports when ConnectThor was running.
  86.  
  87.  1.4 - Addresses that don't start with 'http://' but do start with 'www.'
  88.        will now also be shown.
  89.      - Fixed a bug in the HTML save routine (does anybody use it?).
  90.  
  91. TO DO:
  92. - More hotlists (send me a short hotlist if you want to have it supported).
  93. - GetFTP. I'm still working on it.
  94.   The code will either search for 'ftp://', for x.x.domain (or #.#.#.#), or
  95.   both. The first option will be as fast as that of GetNET, the latter 2
  96.   will be slow (I'll have to check against 200+ domains) and will therefore
  97.   be implemented as an option.
  98.  
  99.   The found addresses will be saved to the hotlist of your WWW browser.
  100.   This is the only solution until I can get my hands on the formats of FTP
  101.   clients, so if you are an FTP client author please post me the format of
  102.   the hotlist. If you're not an author but do know what the format of a
  103.   certain client is please post it to me and I'll ask permission from the
  104.   author.
  105.